home *** CD-ROM | disk | FTP | other *** search
/ Best of www.BestZips.com (Collector's Edition) / Best of WWW.BESTZIPS.COM Collector's Edition (JCSM Shareware) (JCS Marketing).ISO / tutorial / adatu311.zip / ADD.ADA < prev    next >
Text File  |  1996-01-10  |  158b  |  8 lines

  1. with Text_IO; use Text_IO;
  2. procedure Add is
  3.    package My_Int_IO is new Integer_IO(Integer); use My_Int_IO;
  4. begin
  5.    Put(2 + 2);
  6.    New_Line;
  7. end Add;
  8.